/* Generated by less 2.4.0 */


/*  
*   jquery.cookieDisclaimer.js 
*   -----------------------------------------------------------
*   A simple cookie disclaimer bar for your site
*   
*   Plugin Style
*/


/* CookieDisclaimerBar */

.cdbar {
    right: 0;
    left: 0;
    padding: 15px 0;
    text-align: center;
    z-index: 999999999999;
    /* Text Space */
    /* Buttons space */
}

.cdbar .cdbar-text {
    display: inline-block;
    margin-right: 5px;
    font-size: 19px;
}

.cdbar .cdbar-buttons {
    display: inline-block;
    -webkit-transition: background 0.2s ease;
    transition: background 0.2s ease;
}

.cdbar.fixed {
    position: fixed;
}

.cdbar.relative {
    position: relative;
}

.cdbar.absolute {
    position: absolute;
}


/* Bar Clearfix */

.cdbar:before,
.cdbar:after {
    content: "";
    display: table;
    clear: both;
}


/* POSITIONS */


/* *************************************** */


/* Bar at TOP */

.cdbar.top {
    top: 0;
    bottom: auto;
}


/* Bar at BOTTOM */

.cdbar.bottom {
    top: auto;
    bottom: 0;
}


/* Bar at MIDDLE */

.cdbar.middle {
    top: 50%;
    bottom: auto;
    padding: 30px 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cdbar.middle .cdbar-text {
    display: block;
    margin-bottom: 15px;
}

.cdbar.middle .cdbar-buttons {
    display: block;
}


/* STYLES */


/* *************************************** */

.cdbar.dark {
    color: #ffffff;
    background-color: #050505;
}

.cdbar.light {
    color: white;
    background-color: rgb(50, 65, 107);
    margin-left: auto;
    margin-right: auto;
    border-radius: 8px;
    width: 70%;
}


/* MODALS */


/* *************************************** */

.cdmodal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
}

.cdmodal .cdmodal-box {
    position: absolute;
    width: 50%;
    max-width: 700px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.cdmodal .cdmodal-box-inner {
    background: #fff;
    padding: 40px 20px;
}

.cdmodal .cdmodal-box-inner .cdmodal-text h3 {
    padding: 0;
    margin: 0 0 0.5em 0;
}

.cdmodal.top .cdmodal-box {
    top: 10%;
    bottom: auto;
}

.cdmodal.bottom .cdmodal-box {
    top: auto;
    bottom: 10%;
}

.cdmodal.middle .cdmodal-box {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/* BUTTONS */


/* Generic Btn */

.cdbtn {
    display: inline-block;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    text-decoration: none;
    cursor: pointer;
    font-size: 1em;
    margin-right: 5px;
}


/* "Accept" Btn */

.cdbtn.cookie {
    color: #ffffff;
    background-color: #1f83a8;
}

.cdbtn.cookie:hover {
    background-color: #3ba0c6;
}


/* "Privacy" Btn */

.cdbtn.privacy {
    color: #ffffff;
    background-color: #6e7071;
}

.cdbtn.privacy:hover {
    background-color: #8f9191;
}